.floating-window {
    position: fixed;
    right: 30px;
    bottom: 160px;
    z-index: 99;
}

.floating-window .inner {
    position: relative;
}

.floating-window .con {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 54px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px 0px rgba(29, 33, 41, 0.12);
    border-radius: 2px;
    width: 200px;
    margin-right: 10px;
    padding: 24px;
    box-sizing: border-box;
}
.floating-window .item-con{

}
.floating-window .con::after {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
    display: block;
    content: ' ';
    width: 12px;
    height: 12px;
    border: none;
    background-color: #FFFFFF;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0px 4px 12px 0px rgba(29, 33, 41, 0.12);
}

.floating-window .item {
    display: flex;
    /* align-items: center; */
    overflow: hidden;
    margin-bottom: 20px;
}

.floating-window .item:last-child {
    margin-bottom: 0;
}

.floating-window .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    /* background: #F1F3F5;
    border-radius: 50%; */
    margin-right: 10px;
    float: left;
}

.floating-window .pic1 {
    display: block;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-window .pic1 img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.floating-window .txt {
    overflow: hidden;
}

.floating-window .tit {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 6px;
}

.floating-window .desc {
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #727272;
    transition: .5s;
}
.floating-window .item:hover .desc{
    color: #337DFF;
}
.floating-window .btn {
    position: relative;
    overflow: hidden;
    width: 44px;
    padding: 14px 0;
    background: #337DFF;
    /* border: 1px solid #B6B6B6; */
    border-radius: 26px;
}

.floating-window .btn .con-btn {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%); */
}

.floating-window .btn .font {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}
.floating-window .btn .pic1 {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto 8px;
}
.floating-window .btn .pic1 img{
    display: block;
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 750px) {
    .floating-window {
        bottom: 80px;
        right: 20px;
    }

    .floating-window .btn .font {
        font-size: 16px;
    }

    .floating-window .btn {
        width: 40px;
        border-radius: 20px;
    }

    .floating-window .con {
        right: 40px;
        width: 190px;
        padding: 10px 10px 5px;
        box-sizing: border-box;
        margin-right: 20px;
    }

    .floating-window .desc,
    .floating-window .tit {
        font-size: 14px;
    }

    .floating-window .tit {
        margin-bottom: 0;
    }

    .floating-window .pic1 {
        display: block;
        width: 25px;
        height: 25px;
    }

    .floating-window .pic {
        width: 35px;
        height: 35px;
    }
}